home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / ndedit.arc / NDE.DOC < prev    next >
Encoding:
Text File  |  1987-06-12  |  2.9 KB  |  61 lines

  1.  
  2. The Norton DOS Editor, NDE, is a memory resident program which keeps track
  3. of your most recent DOS commands, so that you can recall and edit them.
  4. NDE includes a simple yet powerful command line editor, which makes it
  5. easy for you to make quick, easy changes to your previous commands.  NDE
  6. uses the same command format as the Norton Editor.
  7.  
  8. NDE was written by Stanley Reifel, author of the Norton Editor.  Assembly
  9. language source code is included with the program.  This makes it possible
  10. for you to study some of Stan's programming techniques, and also to make
  11. simple and easy changes to the program, if you wish.
  12.  
  13. If you are like most DOS  users, the primitive command-line editor
  14. available under DOS just doesn't help you very much. For example, DOS's
  15. own command editor only gives you access to the most recently issued
  16. command, when you may want to re-use a long, complicated command issued
  17. four commands prior to the current command.  It's likely that you really
  18. would like to have the full editing capabilities of a good visual editor
  19. (such as the Norton Editor) when modifying a DOS command.  NDE solves
  20. those problems, but doesn't clutter your life with a bunch of other
  21. "features" that you may not need or want.
  22.  
  23. To recall a previous command, use the cursor up-arrow.  NDE keeps a list
  24. of recently issued commands.  You move through this list with the
  25. cursor-up and cursor-down keys.
  26.  
  27. To install the program, just enter the command NDE; you'll probably want
  28. to include it as part of your AUTOEXEC.BAT file.  Once you've activated
  29. NDE, it keeps a record of your commands, so that you can recall them at a
  30. touch of the cursor keys.
  31.  
  32. NDE uses about 3,500 bytes of memory; 1,000 bytes are used to hold a copy
  33. of your commands.  (The amount of memory used to record commands is one of
  34. the things you can easily change in the source code for NDE).
  35.  
  36. NDE -- COMMAND SUMMARY
  37. -----------------------------------------------------------
  38. Left arrow      --  moves cursor left one column
  39. Right arrow     --  moves cursor right one column
  40. ^Left arrow     --  moves cursor left one word
  41. ^Right arrow    --  moves cursor right one word
  42. HOME            --  moves cursor to the line beginning
  43. END             --  moves cursor to the line end
  44.  
  45. Up arrow        --  displays previous command
  46. F3              --  same as up-arrow
  47. Down arrow      --  displays next command
  48.  
  49. Backspace       --  deletes character left of the cursor
  50. DEL             --  deletes character right of the cursor
  51. ^W              --  deletes word left of the cursor
  52. Alt-W           --  deletes word right of the cursor
  53. ^L              --  deletes all characters left of the cursor
  54. Alt-L           --  deletes all characters right of the cursor
  55. Alt-K           --  deletes all characters on the line
  56. ^U              --  undeletes text
  57. Alt-U           --  undeletes text
  58. ESC             --  gets rid of currently displayed command
  59.  
  60. -----------------------------------------------------------
  61.